home *** CD-ROM | disk | FTP | other *** search
/ Champak 33 / Volume 33 - JOGO DISK .iso / Games / pin_ball_deluxe.swf / scripts / DefineSprite_372 / frame_1 / DoAction.as
Text File  |  2007-01-15  |  1KB  |  33 lines

  1. function action()
  2. {
  3.    deltaSpeed = 0;
  4.    if(_root.flipLeft.upSegment.active == true)
  5.    {
  6.       if(_root.holdLeftTarget == _level0.ball && _root.holdLeftTargetIs != _level0.ball1 && _root.holdLeftTargetIs != _level0.ball2)
  7.       {
  8.          _root.ball._x = _X;
  9.          _root.ball._y = _Y;
  10.          _root.ball.speed = 0;
  11.          _root.leftHolded = 1;
  12.          _root.holdLeftTargetIs = _level0.ball;
  13.       }
  14.       else if(_root.holdLeftTarget == _level0.ball1 && _root.holdLeftTargetIs != _level0.ball && _root.holdLeftTargetIs != _level0.ball2)
  15.       {
  16.          _root.ball1._x = _X;
  17.          _root.ball1._y = _Y;
  18.          _root.ball1.speed = 0;
  19.          _root.leftHolded = 1;
  20.          _root.holdLeftTargetIs = _level0.ball1;
  21.       }
  22.       else if(_root.holdLeftTarget == _level0.ball2 && _root.holdLeftTargetIs != _level0.ball && _root.holdLeftTargetIs != _level0.ball1)
  23.       {
  24.          _root.ball2._x = _X;
  25.          _root.ball2._y = _Y;
  26.          _root.ball2.speed = 0;
  27.          _root.leftHolded = 1;
  28.          _root.holdLeftTargetIs = _level0.ball2;
  29.       }
  30.    }
  31. }
  32. stop();
  33.